home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / util / cli / AKCC.lha / Programmers / include / akccplus / akccplusbase.h < prev   
C/C++ Source or Header  |  2000-04-22  |  553b  |  26 lines

  1. /*
  2. **      $VER: akccplus_protos.h 37.1 (6.9.96)
  3. **
  4. **      base definition include for akccplus.library
  5. **
  6. **      (C) Copyright 1989-96 Andreas R. Kleinert
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef AKCCPLUS_AKCCPLUSBASE_H
  11. #define AKCCPLUS_AKCCPLUSBASE_H
  12.  
  13. #ifndef AKCCPLUS_AKCCPLUS_H
  14. #include <akccplus/akccplus.h>
  15. #endif /* AKCCPLUS_AKCCPLUS_H */
  16.  
  17. struct AKCCPlusBase
  18. {
  19.  struct Library     ab_LibNode; /* private fields */
  20.  APTR            ab_SegList;
  21.  struct ExecBase   *ab_SysBase;
  22.  struct DosLibrary *ab_DOSBase;
  23. };
  24.  
  25. #endif /* AKCCPLUS_AKCCPLUS_BASE_H */
  26.